MessageWasNotHandled
Type
expression
Summary
Determines whether a message was handled
Syntax
the message was not handled
Description
Determines if a dispatched message was handled by any script objects in the message path.
Examples
public handler OnMouseUp() returns nothing
send "buttonClicked" to my script object
if the message was not handled then
log "The message was not handled"
end if
end handler